google.golang.org/grpc/attributes.Attributes.m (field)

12 uses

	google.golang.org/grpc/attributes (current package)
		attributes.go#L35: 	m map[interface{}]interface{}
		attributes.go#L40: 	return &Attributes{m: map[interface{}]interface{}{key: value}}
		attributes.go#L51: 	n := &Attributes{m: make(map[interface{}]interface{}, len(a.m)+1)}
		attributes.go#L52: 	for k, v := range a.m {
		attributes.go#L53: 		n.m[k] = v
		attributes.go#L55: 	n.m[key] = value
		attributes.go#L65: 	return a.m[key]
		attributes.go#L82: 	if len(a.m) != len(o.m) {
		attributes.go#L85: 	for k, v := range a.m {
		attributes.go#L86: 		ov, ok := o.m[k]